home *** CD-ROM | disk | FTP | other *** search
/ Directorty Opus 5 - Magellan 2 / Opus 5 - Magellan 2.iso / Extras / opussdk / include / dopus / locale.h < prev    next >
C/C++ Source or Header  |  1996-08-27  |  403b  |  22 lines

  1. #ifndef _DOPUS_LOCALE
  2. #define _DOPUS_LOCALE
  3.  
  4. /*****************************************************************************
  5.  
  6.  Locale
  7.  
  8.  *****************************************************************************/
  9.  
  10. // Locale marker
  11. struct DOpusLocale
  12. {
  13.     APTR        li_LocaleBase;
  14.     APTR        li_Catalog;
  15.     char        *li_BuiltIn;
  16.     struct Locale    *li_Locale;
  17. };
  18.  
  19. STRPTR DOpusGetString(struct DOpusLocale *,LONG);
  20.  
  21. #endif
  22.